github.com/klauspost/compress/zstd.seq.litLen (field)
47 uses
github.com/klauspost/compress/zstd (current package)
blockenc.go#L488: if seq.litLen == uint32(len(b.literals)) && seq.offset-3 == 1 {
blockenc.go#L490: b.encodeRLE(org[0], b.sequences[0].matchLen+zstdMinMatch+seq.litLen)
blockenc.go#L748: wr.addBits32NC(s.litLen, llB.outBits)
blockenc.go#L792: extraBits = extraBits<<outBits | uint64(s.litLen&bitMask32[outBits])
blockenc.go#L856: v := llCode(seq.litLen)
enc_best.go#L147: blk.sequences = append(blk.sequences, seq{litLen: 1, matchLen: uint32(len(src)-1) - zstdMinMatch, offset: 1 + 3})
enc_best.go#L183: s.litLen = uint32(until - nextEmit)
enc_best.go#L425: seq.litLen = uint32(s - nextEmit)
enc_best.go#L427: if seq.litLen > 0 {
enc_better.go#L114: blk.sequences = append(blk.sequences, seq{litLen: 1, matchLen: uint32(len(src)-1) - zstdMinMatch, offset: 1 + 3})
enc_better.go#L148: s.litLen = uint32(until - nextEmit)
enc_better.go#L486: seq.litLen = uint32(s - nextEmit)
enc_better.go#L488: if seq.litLen > 0 {
enc_better.go#L538: seq.litLen = 0
enc_better.go#L666: s.litLen = uint32(until - nextEmit)
enc_better.go#L1002: seq.litLen = uint32(s - nextEmit)
enc_better.go#L1004: if seq.litLen > 0 {
enc_better.go#L1059: seq.litLen = 0
enc_dfast.go#L109: s.litLen = uint32(until - nextEmit)
enc_dfast.go#L275: seq.litLen = uint32(s - nextEmit)
enc_dfast.go#L277: if seq.litLen > 0 {
enc_dfast.go#L337: seq.litLen = 0
enc_dfast.go#L421: s.litLen = uint32(until - nextEmit)
enc_dfast.go#L579: seq.litLen = uint32(s - nextEmit)
enc_dfast.go#L581: if seq.litLen > 0 {
enc_dfast.go#L642: seq.litLen = 0
enc_dfast.go#L755: s.litLen = uint32(until - nextEmit)
enc_dfast.go#L924: seq.litLen = uint32(s - nextEmit)
enc_dfast.go#L926: if seq.litLen > 0 {
enc_dfast.go#L996: seq.litLen = 0
enc_fast.go#L103: s.litLen = uint32(until - nextEmit)
enc_fast.go#L232: seq.litLen = uint32(s - nextEmit)
enc_fast.go#L234: if seq.litLen > 0 {
enc_fast.go#L260: seq.litLen = 0
enc_fast.go#L345: s.litLen = uint32(until - nextEmit)
enc_fast.go#L472: seq.litLen = uint32(s - nextEmit)
enc_fast.go#L474: if seq.litLen > 0 {
enc_fast.go#L500: seq.litLen = 0
enc_fast.go#L600: s.litLen = uint32(until - nextEmit)
enc_fast.go#L732: seq.litLen = uint32(s - nextEmit)
enc_fast.go#L734: if seq.litLen > 0 {
enc_fast.go#L761: seq.litLen = 0
seqdec.go#L14: litLen uint32
seqdec.go#L30: return fmt.Sprint("litLen:", s.litLen, ", matchLen:", s.matchLen+zstdMinMatch, ", offset: INVALID (0)")
seqdec.go#L32: return fmt.Sprint("litLen:", s.litLen, ", matchLen:", s.matchLen+zstdMinMatch, ", offset:", s.offset, " (repeat)")
seqdec.go#L34: return fmt.Sprint("litLen:", s.litLen, ", matchLen:", s.matchLen+zstdMinMatch, ", offset:", s.offset-3, " (new)")
snappy.go#L391: litLen: uint32(lits),
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |